type net/http.http2Flags

25 uses

	net/http (current package)
		h2_bundle.go#L1632: type http2Flags uint8
		h2_bundle.go#L1635: func (f http2Flags) Has(v http2Flags) bool {
		h2_bundle.go#L1642: 	http2FlagDataEndStream http2Flags = 0x1
		h2_bundle.go#L1643: 	http2FlagDataPadded    http2Flags = 0x8
		h2_bundle.go#L1646: 	http2FlagHeadersEndStream  http2Flags = 0x1
		h2_bundle.go#L1647: 	http2FlagHeadersEndHeaders http2Flags = 0x4
		h2_bundle.go#L1648: 	http2FlagHeadersPadded     http2Flags = 0x8
		h2_bundle.go#L1649: 	http2FlagHeadersPriority   http2Flags = 0x20
		h2_bundle.go#L1652: 	http2FlagSettingsAck http2Flags = 0x1
		h2_bundle.go#L1655: 	http2FlagPingAck http2Flags = 0x1
		h2_bundle.go#L1658: 	http2FlagContinuationEndHeaders http2Flags = 0x4
		h2_bundle.go#L1660: 	http2FlagPushPromiseEndHeaders http2Flags = 0x4
		h2_bundle.go#L1661: 	http2FlagPushPromisePadded     http2Flags = 0x8
		h2_bundle.go#L1664: var http2flagName = map[http2FrameType]map[http2Flags]string{
		h2_bundle.go#L1728: 	Flags http2Flags
		h2_bundle.go#L1765: 			name := http2flagName[h.Type][http2Flags(1<<i)]
		h2_bundle.go#L1812: 		Flags:    http2Flags(buf[4]),
		h2_bundle.go#L1910: func (f *http2Framer) startWrite(ftype http2FrameType, flags http2Flags, streamID uint32) {
		h2_bundle.go#L2264: 	var flags http2Flags
		h2_bundle.go#L2446: 	var flags http2Flags
		h2_bundle.go#L2675: 	var flags http2Flags
		h2_bundle.go#L2842: 	var flags http2Flags
		h2_bundle.go#L2941: 	var flags http2Flags
		h2_bundle.go#L2963: func (f *http2Framer) WriteRawFrame(t http2FrameType, flags http2Flags, streamID uint32, payload []byte) error {